Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/051-video background

style.css cody/solygambas/html-css-javascript-projects/051-video background/style.css
136 Views
0 Comments
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

:root {
--overlay-color: #31385c;
}

* {
margin: 0;
index.html cody/solygambas/html-css-javascript-projects/051-video background/index.html
278 Views
0 Comments
<!-- Based on Create a Website With Video Background | HTML & CSS by Brad Traversy (2021)
see: https://www.youtube.com/watch?v=8MgpE2DTTKA -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
script.js cody/solygambas/html-css-javascript-projects/051-video background/script.js
192 Views
0 Comments
const menuToggle = document.querySelector(".toggle");
const showcase = document.querySelector(".showcase");

menuToggle.addEventListener("click", () => {
menuToggle.classList.toggle("active");
showcase.classList.toggle("active");
});